home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / filbuf.zip / CTEST.C < prev    next >
Text File  |  1992-06-12  |  416b  |  14 lines

  1. /* Demonstrates use of both functions from any dialect of C that accepts
  2.  * the "pascal" and "far" keywords.  Both Microsoft and Borland products
  3.  * recognize these.
  4.  */
  5. #include <stdio.h>
  6. extern int pascal far Buffers( void );
  7. extern int pascal far NFiles( void );
  8.  
  9. void main( void )
  10. { printf( "\nThis system is configured for %i files and %i buffers.\n",
  11.           NFiles(),
  12.           Buffers() );
  13. }
  14.